@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700&display=swap');

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.bg-black {
    background-color: rgb(0, 0, 0);
}

.bg-gray {
    background-color: #E7E7E7;
}

.py-50 {
    padding: 50px 0px;
}

.row {
    display: flex;
}

.col-100 {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-50 {
    width: 100%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.mb {
    margin-bottom: 0.75em;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mt-50 {
    margin-top: 50px;
}

.text-white {
    color: rgb(254, 254, 254);
}

.text-black {
    color: #212529;
}

.text-center {
    text-align: center;
}

.head-text {
    font-size: 30px;
    font-weight: 400;
}

.head-title {
    font-size: 42px;
    font-weight: 700;
}

.head-img {
    width: 400px;
    margin: 0 auto;
}

.img-name {
    font-size: 25px;
    font-weight: 700;
    padding-top: 5px;
}

.img-profile {
    font-size: 18px;
    font-weight: 700;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.head-date {
    font-size: 26px;
    text-align: left;
    font-weight: 700;
}

.head-content {
    font-size: 19px;
    text-align: left;
    font-weight: 700;
}

.reg-btn {
    height: 80px;
    box-shadow: rgb(0 0 0 / 25%) 0px 14px 28px -10px;
    background-color: rgb(245, 130, 7);
    width: 90%;
    border-radius: 10px;
    transition: all 0s ease;
    display: block;
    text-decoration: none;
    position: relative;
    font-size: 23px;
    line-height: 1.234em;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    text-shadow: rgb(0 0 0 / 12%) 0px 2px 0px;
    border: none;
    cursor: pointer;
}

.reg-btn:hover {
    background-color: rgb(250 140 30);
}

.secure-btn {
    margin: 0 auto;
}

.head-calendermo {
    font-size: 1.5em;
    font-weight: 700;
    background-color: rgb(205, 0, 0);
    text-align: center;
}

.head-calenderdate {
    font-size: 69px;
    background-color: rgb(254, 254, 254);
    text-align: center;
    color: #212529;
}

.head-calender {
    width: 200px;
    margin-right: 20px;
}

.all-img {
    width: 100%;
    height: 100%;
}

.sub-text {
    font-size: 16px;
    font-weight: 300;
    margin-top: 0.75em;
}

.text-name {
    font-size: 17px;
    font-weight: 700;
    margin-top: 0.75em;
}

.title {
    font-size: 33px;
    letter-spacing: -0.5px;
    font-weight: 700;
    text-align: left;
}

.list {
    margin-top: 30px;
    list-style: none;
    padding: 0;
    counter-reset: section;
}

.list li {
    color: rgb(65, 94, 101);
    font-size: 26px;
    line-height: 1.25em;
    font-weight: 700;
    margin: 0 0 1em;
    position: relative;
    text-indent: -60px;
    padding-left: 80px;
}

.list li::before {
    counter-increment: section;
    content: counter(section);
    background-color: #0080FF;
    padding: 8px 15px;
    border-radius: 100px;
    color: #fff;
    margin-right: 15px;
    position: relative;
    top: 0px;
    font-size: 17px;
}

.workshop-text {
    font-size: 17;
    font-weight: 400;
}

.workshop-content {
    width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.workshop-content img {
    width: 500px;
    margin: 0 auto;
}

.workshop-content h1 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 0.75em;
    letter-spacing: -0.5px;
}

.align-center {
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

/* modal-css */
.modal-window {
    display: none;
    position: fixed; 
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color:  rgba(0, 124, 255, 0.98);
    background-color: rgba(0, 124, 255, 0.98); 
}

/* Modal Content */
.modal-content {
    width: 600px;
    margin: 0 auto;
}

.modal-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: rgb(0 0 0 / 30%) 0px 2px 0px;
}

.modal-text {
    font-size: 17px;
    margin: 0.75em 0;
    font-weight: 400;
    margin-bottom: 40px;
}

.modal-sub-text {
    font-size: 13px;
    font-weight: 400;
}

.modal-input-form input {
    border: 1px solid #e8e8e8;
    background-color: rgb(255, 255, 255);
    border-radius: 3px;
    height: 60px;
    padding: 0px 15px;
    width: 515px;
    position: relative;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 17px;
}

.modal-input-form input:focus {
    outline: none;
}

.modal-input-form {
    position: relative;
}

.modal-input-form span {
    position: absolute;
    top: 18px;
    right: 36px;
}

.modal-input-form span {
    color: #bbb;
    font-size: 18px;
}

.modal-input-form input::placeholder {
    font-size: 17px;
    color: #aaa;
    font-weight: 400;
}


/* The Close Button */
.modal-close {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iNTEycHgiIGlkPSJMYXllcl8xIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgd2lkdGg9IjUxMnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48Zz48cGF0aCBkPSJNMjU2LDMzQzEzMi4zLDMzLDMyLDEzMy4zLDMyLDI1N2MwLDEyMy43LDEwMC4zLDIyNCwyMjQsMjI0YzEyMy43LDAsMjI0LTEwMC4zLDIyNC0yMjRDNDgwLDEzMy4zLDM3OS43LDMzLDI1NiwzM3ogICAgTTM2NC4zLDMzMi41YzEuNSwxLjUsMi4zLDMuNSwyLjMsNS42YzAsMi4xLTAuOCw0LjItMi4zLDUuNmwtMjEuNiwyMS43Yy0xLjYsMS42LTMuNiwyLjMtNS42LDIuM2MtMiwwLTQuMS0wLjgtNS42LTIuM0wyNTYsMjg5LjggICBsLTc1LjQsNzUuN2MtMS41LDEuNi0zLjYsMi4zLTUuNiwyLjNjLTIsMC00LjEtMC44LTUuNi0yLjNsLTIxLjYtMjEuN2MtMS41LTEuNS0yLjMtMy41LTIuMy01LjZjMC0yLjEsMC44LTQuMiwyLjMtNS42bDc1LjctNzYgICBsLTc1LjktNzVjLTMuMS0zLjEtMy4xLTguMiwwLTExLjNsMjEuNi0yMS43YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zYzIuMSwwLDQuMSwwLjgsNS42LDIuM2w3NS43LDc0LjdsNzUuNy03NC43ICAgYzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zYzIuMSwwLDQuMSwwLjgsNS42LDIuM2wyMS42LDIxLjdjMy4xLDMuMSwzLjEsOC4yLDAsMTEuM2wtNzUuOSw3NUwzNjQuMywzMzIuNXoiLz48L2c+PC9zdmc+);
    background-size: 30px 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    position: relative;
    top: -50px;
    right: -50px;
}

.modal-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-btn {
    width: 100%;
    background-color: rgba(19, 19, 19, 0.95);
    height: 70px;
    border-radius: 3px;
}

.modal-btn a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: block;
    font-size: 27px;
    line-height: 1.5em;
    font-weight: 700;
    padding: 15px;
}

p.text-box11 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #212529;
    margin: 0;
    padding-top: 30px;
}

@media only screen and (max-width: 992px) {
    .container {
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .row {
        display: block;
    }

    .col-50 {
        width: auto;
        max-width: 100%;
    }

    .col-100 {
        width: auto;
        max-width: 100%;
    }

    .head-img {
        width: 100%;
    }

    .workshop-content {
        width: 100%;
    }

    .workshop-content img {
        width: 100%;
    }

    img {
        width: 100%;
        max-width: 100%;
    }

    .head-text {
        font-size: 22px;
    }

    .head-title {
        font-size: 24px;
    }

    .flex {
        display: block;
    }

    .head-calender {
        width: 100%;
        margin-bottom: 10px;
    }

    .head-date {
        font-size: 23px;
        text-align: center;
    }

    .head-content {
        font-size: 14px;
        text-align: center;
    }

    .reg-btn {
        width: 100%;
        height: 65px;
    }

    .title {
        font-size: 23px;
        text-align: center;
    }

    .list li {
        font-size: 15px;
        margin: 0 0 1.5em;
        text-indent: -50px;
        padding-left: 65px;
    }

    .list li::before {
        top: 10px;
        font-size: 17px;
        padding: 6px 12px;
    }

    .workshop-content h1 {
        text-align: center;
        font-size: 23px;
    }

    .py-sm-50 {
        padding: 0px !important;
    }

    .mb-sm-50 {
        margin-bottom: 50px;
    }

    .modal-window>div {
        width: 85%;
        top: 55%;
    }

    .modal-content {
        width: 100%;
        margin: 0 auto;
    }

    .modal-input-form input {
        width: -webkit-fill-available;
    }

    .modal-btn {
        height: 60px;
    }

    .modal-btn a {
        font-size: 16px;
        padding: 18px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .modal-close {
        top: -45px;
        right: 0;
    }

    p.text-box11 {
        font-size: 14px;
    }
}